home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / hwp / Makefile < prev    next >
Encoding:
Makefile  |  1995-05-03  |  608 b   |  33 lines

  1. # For hwp on MGR terminals:
  2. #TARGET=    mhwp
  3. # For hwp on ASCII terminals:
  4. TARGET=    hwp
  5. # For hwp in xterm windows:
  6. #TARGET=    xhwp
  7.  
  8. OBJS=    hwp.o
  9.  
  10. LIBS=    -lcurses
  11.  
  12. # For Coherent 4.2 with lp spooler:
  13. CFLAGS=    -O -DSPOOLER=\"lp\"
  14. # For Coherent 4.0 with lpr spooler:
  15. #CFLAGS=    -O -DOLD_ACCESS
  16. # For Coherent 4.2 with lpr spooler:
  17. #CFLAGS=    -O
  18. # For Coherent 4.2 with lp spooler and MGR:
  19. #CFLAGS=    -O -DSPOOLER=\"lp\" -DMGR
  20. # For Coherent 4.2 with lp spooler and X11:
  21. #CFLAGS=    -O -DSPOOLER=\"lp\" -DX11
  22.  
  23. hwp:    $(OBJS)
  24.     cc -o $(TARGET) $(OBJS) $(LIBS)
  25.  
  26. all:    $(TARGET)
  27.  
  28. clean:
  29.     rm -f $(OBJS)
  30.  
  31. clobber:    clean
  32.     rm -f $(TARGET)
  33.